home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / scheme / gjr / cmplrtst.lha / blast.scm < prev    next >
Encoding:
Text File  |  1990-03-27  |  253 b   |  20 lines

  1. ;;; -*- Scheme -*-
  2.  
  3. (declare (usual-integrations))
  4.  
  5. #|
  6. Description:
  7.  
  8. This code tests simple list operations and uuo links.
  9.  
  10. Usage:
  11.  
  12. (last '(1)) -> (1)
  13. (last '(1 2 3 4 5)) -> (5))
  14.  
  15. |#
  16.  
  17. (define (last x)
  18.   (if (null? (cdr x))
  19.       x
  20.       (last (cdr x))))